# ==============================================================================
# Test CMake File
# ==============================================================================

# program source  code  --------------------------------------------------------
SET(PROGRAM_SRC
        main.cpp
        )

# final build ------------------------------------------------------------------
ADD_EXECUTABLE(myprog ${PROGRAM_SRC})

TARGET_LINK_LIBRARIES(myprog 
                ${OPEN_BABEL_LIB}
                )

INSTALL(TARGETS
            myprog
        RUNTIME DESTINATION
            bin
        )
